home *** CD-ROM | disk | FTP | other *** search
-
- {$A+} { Align data }
- {$B-} { Boolean evaluation }
- {$E+} { 80x87 emulator }
- {$F-} { Force FAR calls }
- {$G+} { 80286 code }
- {$I-} { I/O checking }
- {$K-} { Smart Callbacks }
- {$N-} { 80x87 code }
- {$O-} { Overlays allowed }
- {$P-} { Open parameters }
- {$T-} { Typed pointers }
- {$V-} { String VAR checking }
- {$W-} { Windows stack frame for real mode }
- {$X+} { Extended syntax }
-
- {$IFDEF DEBUG}
- {$D+} { Debug information }
- {$L+} { Local symbols }
- {$Q+} { Overflow checking }
- {$R+} { Range checking }
- {$S+} { Stack checking }
- {$Y+} { Symbol reference information }
- {$ELSE}
- {$D-} { Debug information }
- {$L-} { Local symbols }
- {$Q-} { Overflow checking }
- {$R-} { Range checking }
- {$S-} { Stack checking }
- {$Y-} { Symbol reference information }
- {$ENDIF}
-
- {$C Moveable Demandload Discardable} { Code Segment attributes }
-
- UNIT MHookTpw;
-
- INTERFACE
-
- FUNCTION InstallMouseHook : Boolean;
- PROCEDURE RemoveMouseHook;
-
- IMPLEMENTATION
-
- FUNCTION InstallMouseHook : Boolean;
- EXTERNAL 'MAUSHOOK' index 1;
- PROCEDURE RemoveMouseHook;
- EXTERNAL 'MAUSHOOK' index 2;
-
- END. { MHookTpw }
-
-
-